home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / awe2-0_1.lha / awe2-0.1 / Src / RCS / LogNormal.cc,v < prev    next >
Text File  |  1989-02-20  |  688b  |  63 lines

  1. head     3.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @@;
  7.  
  8.  
  9. 3.2
  10. date     89.02.20.15.35.51;  author grunwald;  state Exp;
  11. branches ;
  12. next     3.1;
  13.  
  14. 3.1
  15. date     88.12.20.13.48.57;  author grunwald;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.09.18.16.42.25;  author grunwald;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 3.2
  30. log
  31. @Start using Gnu library heaps for schedulers
  32. @
  33. text
  34. @#include "LogNormal.h"
  35. #include <math.h>
  36.  
  37. //
  38. //    See Simulation, Modelling & Analysis by Law & Kelton, pp260
  39. //
  40. // 
  41.  
  42. double LogNormal::operator()()
  43. {
  44.     return( pow(M_E, Normal::operator()() ) );
  45. }
  46. @
  47.  
  48.  
  49. 3.1
  50. log
  51. @Steay version
  52. @
  53. text
  54. @@
  55.  
  56.  
  57. 1.1
  58. log
  59. @Initial revision
  60. @
  61. text
  62. @@
  63.